home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 011 / mouses.arc / M_TIMELN.MSC < prev    next >
Text File  |  1986-08-28  |  8KB  |  194 lines

  1. ;
  2. ;       Time Line (R) Pop-up Menu Configuration
  3. ;                 (version 2.0 only)
  4. ;
  5. Comment         ("Configured for Time Line")
  6.  
  7. ;
  8. ;       Parameters
  9. ;
  10. Sensitivity     (13, 8)         ; (Xinc, Yinc)
  11. Hysteresis      (1, 1)          ; (AutoX, AutoY)
  12. ReverseVideo    (Yes)           ; Menu is displayed in reverse video
  13. FixedMenu       (Yes)           ; Menu is in a fixed position
  14. MenuCenter      (70, 0)         ; (Col, Row) of menu center
  15. EnableBeep      (Yes)           ; Beeps if wrong button pressed with menu up
  16.  
  17. ;
  18. ;    Cursor Definitions
  19. ;
  20. ArrowKeys: Cursor
  21. (
  22.     Left    ([Left])
  23.     Right    ([Right])
  24.     Up    ([Up])
  25.     Down    ([Down])
  26. )
  27.  
  28. ;
  29. ;       Button Definitions
  30. ;
  31. LBG:    Button  (Menu(Gantt))           ; Left button, Gantt chart
  32. LBH:    Button  (Menu(Hist))            ; Left button, Histogram chart
  33. LBP:    Button  (Menu(Pert))            ; Left button, Pert chart
  34. LBT:    Button  (Menu(Tasks))           ; Left button, Tasks pop-up
  35. LBTF:   Button  (Menu(TaskFm))          ; Left button, Task form
  36. LBF:    Button  (Menu(Filters))         ; Left button, Filters pop-up
  37. LBO:    Button  (Menu(Options))         ; Left button, Options pop-up
  38. LBD:    Button  (Menu(Display))         ; Left button, Display pop-up
  39. LBDP:   Button  (Menu(Depend))          ; Left button, Dependencies pop-up
  40. MB:     Button  (Keys([Enter] [F10]))   ; Middle button
  41. MBDP:   Button  (Keys("1"))             ; Middle button, Dependencies pop-up
  42. RB:     Button  (Keys([Esc]))           ; Right button
  43. RBDP:   Button  (Keys("2"))             ; Right button, Dependencies pop-up
  44. MRC:    Button  (Keys("+"))             ; MiddleRight chord, (+) Dependencies
  45. LMC:    Button  (Keys("-"))             ; LeftMiddle chord, (-) Dependencies
  46. LMRC:   Button  (Keys([a-F10]))         ; LeftMiddleRight chord, Undo
  47.  
  48. ;
  49. ;       Menu Definitions
  50. ;
  51. Gantt: Menu
  52. (
  53.  Title ("Gantt")
  54.  Item  ("Time Line Menu",           Keys("/"))
  55.  Item  ("Tasks",                    Menu(Tasks), Button(LBT))
  56.  Item  ("Dependencies",             Menu(Depend), Button(LBDP),
  57.                                     Button(Middle=MBDP), Button(Right=RBDP))
  58.  Item  ("Filters",                  Menu(Filters), Button(LBF))
  59.  Item  ("Options",                  Menu(Options), Button(LBO))
  60.  Item  ("Display",                  Menu(Display), Button(LBD))
  61.  Item  ("Chg to Histogram Chart",   Keys([a-F6] "h"), Button(LBH))
  62.  Item  ("Chg to Pert Chart",        Keys([a-F6] "p"), Button(LBP))
  63.  Item  ("Help",                     Keys([F1]))
  64. )
  65.  
  66. Hist: Menu
  67. (
  68.  Title ("Histogram")
  69.  Item  ("Histogram Menu",           Keys("/"))
  70.  Item  ("1st Resource",             Keys([Esc] [F6] [F2]))
  71.  Item  ("2nd Resource",             Keys([Esc] [F6] [Down] [F2]))
  72.  Item  ("Go To Date",               Keys([s-F5]))
  73.  Item  ("Chg to Gantt Chart",       Keys([a-F6]), Button(LBG))
  74.  Item  ("Chg to Pert Chart",        Keys([a-F6] [a-F6] "p"), Button(LBP))
  75.  Item  ("Help",                     Keys([F1]))
  76. )
  77.  
  78. Pert: Menu
  79. (
  80.  Title ("Pert")
  81.  Item  ("Chg to Gantt Chart",       Keys([a-F6]), Button(LBG))
  82.  Item  ("Chg to Histogram Chart",   Keys([a-F6] [a-F6] "h"), Button(LBH))
  83.  Item  ("Help",                     Keys([F1]))
  84. )
  85.  
  86. Tasks: Menu
  87. (
  88.  Title ("Tasks")
  89.  Item  ("Edit Current Task",        Keys([F2]), Button(LBTF))
  90.  Item  ("Add New Task",             Keys([Ins]), Button(LBTF))
  91.  Item  ("Copy Task",                Keys([s-F2]), Button(LBTF))
  92.  Item  ("Chg Task to 'Fixed'",      Keys([F2] [Down] "f" [F10]))
  93.  Item  ("Chg Task to 'ASAP'",       Keys([F2] [Down] "fa" [F10]))
  94.  Item  ("Gantt Pop-up",             Menu(Gantt), Button(LBG))
  95. )
  96. ;
  97. ; Customize your Tasks pop-up with items similar to the following:
  98. ; Item ("Insert 'Phase 1' in Notes 2", Keys([F2] [Tab] [Down] "Phase 1" [F10]))
  99. ; Item ("Insert 'Phase 2' in Notes 2", Keys([F2] [Tab] [Down] "Phase 2" [F10]))
  100. ;
  101.  
  102. TaskFm: Menu
  103. (
  104.  Title ("Task Form")
  105.  Item  ("Accept Form",              Keys([F10]), Button(LBT))
  106.  Item  ("Cancel Form",              Keys([Esc]), Button(LBT))
  107.  Item  ("Help",                     Keys([F1]))
  108.  Item  ("Tasks Pop-up",             Menu(Tasks), Button(LBT))
  109. )
  110. ;
  111. ; Customize your Task Form pop-up with items similar to the following:
  112. ; Item  ("Insert Note 1",           Keys([Home] [Tab] "Example note"))
  113. ; Item  ("Insert Note 2",           Keys([Home] [Tab] [Down] "Example note"))
  114. ;
  115.  
  116. Depend: Menu
  117. (
  118.  Title ("Dependencies")
  119.  Item  ("Show Dependencies",            Keys([F7]))
  120.  Item  ("Task '1' - Middle Button",     Keys("1"))
  121.  Item  ("Task '2' - Right Button",      Keys("2"))
  122.  Item  ("Join - MiddleRight Chord",     Keys("+"))
  123.  Item  ("Unjoin - LeftMiddle Chord",    Keys("-"))
  124.  Item  ("Undo - LeftMiddleRight Chord", Keys([a-F9]))
  125.  Item  ("Gantt Pop-up",                 Menu(Gantt), Button(LBG),
  126.                                         Button(Middle=MB), Button(Right=RB))
  127. )
  128.  
  129. Filters: Menu
  130. (
  131.  Title ("Filters")
  132.  Item  ("Standard (No) Filters",    Keys([s-F7] "c"))
  133.  Item  ("Show Dependencies",        Keys([F7]))
  134.  Item  ("Highlight Critical Path",  Keys([s-F7] "c" [a-F7][Tab][Tab][Tab] "y"
  135.                                     [F10]))
  136.  Item  ("Enhance Filtered Tasks",   Keys([s-F7] "e"))
  137.  Item  ("Hide Unfiltered Tasks",    Keys([s-F7] "h"))
  138.  Item  ("Clear Highlighting",       Keys([s-F7] "c"))
  139.  Item  ("Gantt Pop-up",             Menu(Gantt), Button(LBG))
  140. )
  141. ;
  142. ; Customize your Filters pop-up with items similar to the following:
  143. ; Item  ("Highlight Phase 1",        Keys([s-F7] "c" [a-F7][s-Tab][s-Tab][a-F9]
  144. ;                                    "phase 1" [F10]))
  145. ; Item  ("Highlight Phase 2",        Keys([s-F7] "c" [a-F7][s-Tab][s-Tab][a-F9]
  146. ;                                    "phase 2" [F10]))
  147. ;
  148.  
  149. Options: Menu
  150. (
  151.  Title ("Options")
  152.  Item  ("Standard Options",         Keys([a-F3] "a" [Tab] "n" [Tab] "nt" 
  153.                                     [Tab] "y" [Tab] "n" [F10]))
  154.  Item  ("Automatic Recalc On/Off",  Keys([a-F3] [Left] [F10]))
  155.  Item  ("Resource Leveling On/Off", Keys([a-F3] [Down] [Left] [F10]))
  156.  Item  ("Alarm Clock On/Off",       Keys([a-F3] [End] [Left] [F10]))
  157.  Item  ("Sort by Task Start Date",  Keys([a-F3] [Down] [Down] "nt" [F10]))
  158.  Item  ("Sort by Task Name",        Keys([a-F3] [Down] [Down] "ntt" [F10]))
  159.  Item  ("Sort by Notes 1",          Keys([a-F3] [Down] [Down] "tn" [F10]))
  160.  Item  ("Sort by Notes 2",          Keys([a-F3] [Down] [Down] "tnn" [F10]))
  161.  Item  ("Gantt Pop-up",             Menu(Gantt), Button(LBG))
  162. )
  163.  
  164. Display: Menu
  165. (
  166.  Title ("Display")
  167.  Item  ("Standard Display",         Keys([F6] "c" [End] "f" [Up] "12" [Up] "22"
  168.                                     [Up] "d" [Up] "1" [F10]))
  169.  Item  ("No Resources",             Keys([F6] [End] [Up] "0" [F10]))
  170.  Item  ("Show Total Slack",         Keys([F6] "c" [End] "t" [F10]))
  171.  Item  ("Show Free Slack",          Keys([F6] "c" [End] "f" [F10]))
  172.  Item  ("Compressed Scale",         Keys([F6] [End] [Up] [Up] [Up] "w"
  173.                                     [Up] "1" [F10]))
  174.  Item  ("Normal Scale",             Keys([F6] [End] [Up] [Up] [Up] "d"
  175.                                     [Up] "1" [F10]))
  176.  Item  ("Weekly Glance",            Keys([F6] "w" [F10]))
  177.  Item  ("Daily Glance",             Keys([F6] "d" [F10]))
  178.  Item  ("Gantt Pop-up",             Menu(Gantt), Button(LBG))
  179. )
  180.  
  181. ;
  182. ;    Mouse Definition
  183. ;
  184. Mouse
  185. (
  186.     Left            (LBG)
  187.     Middle          (MB)
  188.     Right           (RB)
  189.         LeftMiddle      (LMC)
  190.         MiddleRight     (MRC)
  191.         LeftMiddleRight (LMRC)
  192.     Cursor          (ArrowKeys)
  193. )
  194.